9e50cc113ffc689af968d87fa62d0723921ce669,generators/src/test/java/com/pholser/junit/quickcheck/generator/java/util/LocaleGeneratorTest.java,LocaleGeneratorTest,verifyInteractionWithRandomness,#,57

Before Change


    }

    @Override public void verifyInteractionWithRandomness() {
        verifyInts(randomForParameterGenerator, times(3), LOCALES.length);
    }
}

After Change


    }

    @Override public void verifyInteractionWithRandomness() {
        verify(randomForParameterGenerator, times(3)).nextElement(LOCALES);
    }
}